From bd0e34a1736601c468931c37bb480a9f88b7766f Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Mon, 30 Jan 2006 18:51:35 +0100 Subject: [PATCH] Fix the ia64 definition of MAX_DMADOM_PFN. Sgned-off-by: Keir Fraser --- xen/include/asm-ia64/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/asm-ia64/config.h b/xen/include/asm-ia64/config.h index 4a7b4d4f1a..736cbb8338 100644 --- a/xen/include/asm-ia64/config.h +++ b/xen/include/asm-ia64/config.h @@ -40,7 +40,7 @@ //leave SMP for a later time //#undef CONFIG_SMP -#define MAX_DMADOM_PFN 0x7FFFFUL /* 31 addressable bits */ +#define MAX_DMADOM_PFN (0x7FFFFFFFUL >> PAGE_SHIFT) /* 31 addressable bits */ #ifndef __ASSEMBLY__ -- 2.30.2